home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 8_scripts / recursion < prev    next >
Text File  |  2001-03-21  |  1KB  |  36 lines

  1. Synopsis:
  2.    load recursion
  3.  
  4. Description:
  5.    This script primarily serves as a working example of how to write
  6.    recursive aliases.  The examples provided fairly suitable for everyday
  7.    use (though only irc operators may use some of them).
  8.  
  9.      Alias         Description                                            
  10.      /conbunch     CONNECT an arbitrary number of servers to current one
  11.      /iterate      run given command once for each argument
  12.      /kickbunch    KICK an arbitrary number of people from current channel
  13.      /opalot       (de)op any number of people
  14.      /squitbunch   SQUIT an arbitrary number of servers
  15.      /versbunch    VERSION an arbitrary number of nicknames or servers
  16.  
  17. Examples:
  18.    To ping several people at once:
  19.       /iterate ping joebob jimbob toejam junebug
  20.  
  21.    To deop several jerks in the currentchannel:
  22.       /opalot - jerk1 jerk2 jerk3 jerk4 jerk5
  23.  
  24. See Also:
  25.    connect(3); fe(8); kick(1); load(5); mode(1); set(4) max_recursions;
  26.    squit(3); version(2)
  27.  
  28. Restrictions:
  29.    The MAX_RECURSIONS setting limits the number of times an alias may call
  30.    itself.
  31.  
  32. Other Notes:
  33.    The need for recursion has largely been depricated in EPIC with the
  34.    introduction of FE.  This script was written by Ian Frechette (Daemon),
  35.    frechett@spot.colorado.edu.
  36.